home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 16 / PC Actual CD 16.iso / cdactual / vb / AdvLabel1 / ILTest.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-09-14  |  1.6 KB  |  56 lines

  1. VERSION 5.00
  2. Object = "*\AAdvLabel.vbp"
  3. Begin VB.Form frmILTest 
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Formulario de pruebas"
  6.    ClientHeight    =   1830
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   4095
  10.    ControlBox      =   0   'False
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1830
  15.    ScaleWidth      =   4095
  16.    StartUpPosition =   3  'Windows Default
  17.    Begin AdvLabel.IncLabel IncLabel1 
  18.       Height          =   1095
  19.       Left            =   120
  20.       TabIndex        =   1
  21.       Top             =   120
  22.       Width           =   3855
  23.       _ExtentX        =   6800
  24.       _ExtentY        =   1931
  25.    End
  26.    Begin VB.CommandButton cmdOk 
  27.       Caption         =   "Salir"
  28.       Default         =   -1  'True
  29.       Height          =   375
  30.       Left            =   1320
  31.       TabIndex        =   0
  32.       Top             =   1320
  33.       Width           =   1455
  34.    End
  35. Attribute VB_Name = "frmILTest"
  36. Attribute VB_GlobalNameSpace = False
  37. Attribute VB_Creatable = False
  38. Attribute VB_PredeclaredId = True
  39. Attribute VB_Exposed = False
  40. '*****************************************************
  41. ' Curso de creaci
  42. n de controles en VB5 por intec
  43. ' Fichero:  frmILTest (ILTest.frm)
  44. ' Autor:    Lleonard del R
  45. o (intec)
  46. ' Fecha:    1/9/97
  47. ' Versi
  48. n:  1.0
  49. ' Descr:    Formulario de prueba para el control
  50. '           "etiqueta incremental".
  51. '*****************************************************
  52. Option Explicit
  53. Private Sub cmdOk_Click()
  54.     Unload Me
  55. End Sub
  56.